home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / earcd / util / sys / msys_1_2.lha / Doc / reboot.doc < prev    next >
Text File  |  1996-09-28  |  1KB  |  40 lines

  1. C/Reboot                                                             C/Reboot
  2.  
  3.    NAME
  4.        Reboot -- reboot your computer. (V42)
  5.  
  6.    SYNOPSIS
  7.        Reboot [CLEAR] [DELAY=DelayValue]
  8.  
  9.    TEMPLATE
  10.        Reboot "NORES=CLEAR/S,DELAY/N"
  11.  
  12.    FUNCTION
  13.        Reboots your Amiga by calling exec.library/ColdReboot(). If CLEAR
  14.        parameter is given, will clear system vectors befor rebooting. This
  15.        is useful if you want to get rid of some reset-resident programs,
  16.        like RAD: drive. A DELAY option can be used to delay rebooting.
  17.  
  18.    INPUTS
  19.        CLEAR - switch to clear system vectors before rebooting.
  20.        DELAY - number of seconds to wait before rebooting.
  21.  
  22.    RESULT
  23.        RETURN_FAIL  - if 'dos.library' couldn't be opened.
  24.        RETURN_ERROR - if DELAY value was wrong.
  25.                 RETURN_WARN  - if reboot wasn't performed.
  26.  
  27.    EXAMPLE
  28.        Reboot
  29.            ; Reboots Amiga, doesn't touch resident programs.
  30.  
  31.        Reboot CLEAR
  32.            ; Removes resident programs then reboots your Amiga.
  33.  
  34.        Reboot 10
  35.            ; Reboots Amiga after a 10 seconds period.
  36.  
  37.    NOTES
  38.        Reboot is pure and can be made resident.
  39.  
  40.